home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / gd25s.zip / ANALYZE.C < prev    next >
C/C++ Source or Header  |  1993-10-08  |  29KB  |  961 lines

  1. /* Analyze file differences for GNU DIFF.
  2.    Copyright (C) 1988, 1989, 1992, 1993 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU DIFF.
  5.  
  6. GNU DIFF is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU DIFF is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU DIFF; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. /* The basic algorithm is described in:
  21.    "An O(ND) Difference Algorithm and its Variations", Eugene Myers,
  22.    Algorithmica Vol. 1 No. 2, 1986, p 251.  */
  23.  
  24. #include "diff.h"
  25. #include "cmpbuf.h"
  26.  
  27. extern int no_discards;
  28.  
  29. static int *xvec, *yvec;    /* Vectors being compared. */
  30. static int *fdiag;        /* Vector, indexed by diagonal, containing
  31.                    the X coordinate of the point furthest
  32.                    along the given diagonal in the forward
  33.                    search of the edit matrix. */
  34. static int *bdiag;        /* Vector, indexed by diagonal, containing
  35.                    the X coordinate of the point furthest
  36.                    along the given diagonal in the backward
  37.                    search of the edit matrix. */
  38.  
  39. static int diag PARAMS((int, int, int, int, int *));
  40. static struct change *add_change PARAMS((int, int, int, int, struct change *));
  41. static struct change *build_reverse_script PARAMS((struct file_data const[]));
  42. static struct change *build_script PARAMS((struct file_data const[]));
  43. static void briefly_report PARAMS((int, struct file_data const[]));
  44. static void compareseq PARAMS((int, int, int, int));
  45. static void discard_confusing_lines PARAMS((struct file_data[]));
  46. static void shift_boundaries PARAMS((struct file_data[]));
  47.  
  48. /* Find the midpoint of the shortest edit script for a specified
  49.    portion of the two files.
  50.  
  51.    We scan from the beginnings of the files, and simultaneously from the ends,
  52.    doing a breadth-first search through the space of edit-sequence.
  53.    When the two searches meet, we have found the midpoint of the shortest
  54.    edit sequence.
  55.  
  56.    The value returned is the number of the diagonal on which the midpoint lies.
  57.    The diagonal number equals the number of inserted lines minus the number
  58.    of deleted lines (counting only lines before the midpoint).
  59.    The edit cost is stored into *COST; this is the total number of
  60.    lines inserted or deleted (counting only lines before the midpoint).
  61.  
  62.    This function assumes that the first lines of the specified portions
  63.    of the two files do not match, and likewise that the last lines do not
  64.    match.  The caller must trim matching lines from the beginning and end
  65.    of the portions it is going to specify.
  66.  
  67.    Note that if we return the "wrong" diagonal value, or if
  68.    the value of bdiag at that diagonal is "wrong",
  69.    the worst this can do is cause suboptimal diff output.
  70.    It cannot cause incorrect diff output.  */
  71.  
  72. static int
  73. diag (xoff, xlim, yoff, ylim, cost)
  74.      int xoff, xlim, yoff, ylim;
  75.      int *cost;
  76. {
  77.   int *const fd = fdiag;    /* Give the compiler a chance. */
  78.   int *const bd = bdiag;    /* Additional help for the compiler. */
  79.   int *const xv = xvec;        /* Still more help for the compiler. */
  80.   int *const yv = yvec;        /* And more and more . . . */
  81.   int const dmin = xoff - ylim;    /* Minimum valid diagonal. */
  82.   int const dmax = xlim - yoff;    /* Maximum valid diagonal. */
  83.   int const fmid = xoff - yoff;    /* Center diagonal of top-down search. */
  84.   int const bmid = xlim - ylim;    /* Center diagonal of bottom-up search. */
  85.   int fmin = fmid, fmax = fmid;    /* Limits of top-down search. */
  86.   int bmin = bmid, bmax = bmid;    /* Limits of bottom-up search. */
  87.   int c;            /* Cost. */
  88.   int odd = (fmid - bmid) & 1;    /* True if southeast corner is on an odd
  89.                    diagonal with respect to the northwest. */
  90.  
  91.   fd[fmid] = xoff;
  92.   bd[bmid] = xlim;
  93.  
  94.   for (c = 1;; ++c)
  95.     {
  96.       int d;            /* Active diagonal. */
  97.       int big_snake = 0;
  98.  
  99.       /* Extend the top-down search by an edit step in each diagonal. */
  100.       fmin > dmin ? fd[--fmin - 1] = -1 : ++fmin;
  101.       fmax < dmax ? fd[++fmax + 1] = -1 : --fmax;
  102.       for (d = fmax; d >= fmin; d -= 2)
  103.     {
  104.       int x, y, oldx, tlo = fd[d - 1], thi = fd[d + 1];
  105.  
  106.       if (tlo >= thi)
  107.         x = tlo + 1;
  108.       else
  109.         x = thi;
  110.       oldx = x;
  111.       y = x - d;
  112.       while (x < xlim && y < ylim && xv[x] == yv[y])
  113.         ++x, ++y;
  114.       if (x - oldx > 20)
  115.         big_snake = 1;
  116.       fd[d] = x;
  117.       if (odd && bmin <= d && d <= bmax && bd[d] <= fd[d])
  118.         {
  119.           *cost = 2 * c - 1;
  120.           return d;
  121.         }
  122.     }
  123.  
  124.       /* Similar extend the bottom-up search. */
  125.       bmin > dmin ? bd[--bmin - 1] = INT_MAX : ++bmin;
  126.       bmax < dmax ? bd[++bmax + 1] = INT_MAX : --bmax;
  127.       for (d = bmax; d >= bmin; d -= 2)
  128.     {
  129.       int x, y, oldx, tlo = bd[d - 1], thi = bd[d + 1];
  130.  
  131.       if (tlo < thi)
  132.         x = tlo;
  133.       else
  134.         x = thi - 1;
  135.       oldx = x;
  136.       y = x - d;
  137.       while (x > xoff && y > yoff && xv[x - 1] == yv[y - 1])
  138.         --x, --y;
  139.       if (oldx - x > 20)
  140.         big_snake = 1;
  141.       bd[d] = x;
  142.       if (!odd && fmin <= d && d <= fmax && bd[d] <= fd[d])
  143.         {
  144.           *cost = 2 * c;
  145.           return d;
  146.         }
  147.     }
  148.  
  149.       /* Heuristic: check occasionally for a diagonal that has made
  150.      lots of progress compared with the edit distance.
  151.      If we have any such, find the one that has made the most
  152.      progress and return it as if it had succeeded.
  153.  
  154.      With this heuristic, for files with a constant small density
  155.      of changes, the algorithm is linear in the file size.  */
  156.  
  157.       if (c > 200 && big_snake && heuristic)
  158.     {
  159.       int best;
  160.       int bestpos;
  161.  
  162.       best = 0;
  163.       bestpos = 0; /* Pacify `gcc -Wall'.  */
  164.       for (d = fmax; d >= fmin; d -= 2)
  165.         {
  166.           int dd = d - fmid;
  167.           if ((fd[d] - xoff)*2 - dd > 12 * (c + (dd > 0 ? dd : -dd)))
  168.         {
  169.           if (fd[d] * 2 - dd > best
  170.               && fd[d] - xoff > 20
  171.               && fd[d] - d - yoff > 20)
  172.             {
  173.               int k;
  174.               int x = fd[d];
  175.  
  176.               /* We have a good enough best diagonal;
  177.              now insist that it end with a significant snake.  */
  178.               for (k = 1; k <= 20; k++)
  179.             if (xvec[x - k] != yvec[x - d - k])
  180.               break;
  181.  
  182.               if (k == 21)
  183.             {
  184.               best = fd[d] * 2 - dd;
  185.               bestpos = d;
  186.             }
  187.             }
  188.         }
  189.         }
  190.       if (best > 0)
  191.         {
  192.           *cost = 2 * c - 1;
  193.           return bestpos;
  194.         }
  195.  
  196.       best = 0;
  197.       for (d = bmax; d >= bmin; d -= 2)
  198.         {
  199.           int dd = d - bmid;
  200.           if ((xlim - bd[d])*2 + dd > 12 * (c + (dd > 0 ? dd : -dd)))
  201.         {
  202.           if ((xlim - bd[d]) * 2 + dd > best
  203.               && xlim - bd[d] > 20
  204.               && ylim - (bd[d] - d) > 20)
  205.             {
  206.               /* We have a good enough best diagonal;
  207.              now insist that it end with a significant snake.  */
  208.               int k;
  209.               int x = bd[d];
  210.  
  211.               for (k = 0; k < 20; k++)
  212.             if (xvec[x + k] != yvec[x - d + k])
  213.               break;
  214.               if (k == 20)
  215.             {
  216.               best = (xlim - bd[d]) * 2 + dd;
  217.               bestpos = d;
  218.             }
  219.             }
  220.         }
  221.         }
  222.       if (best > 0)
  223.         {
  224.           *cost = 2 * c - 1;
  225.           return bestpos;
  226.         }
  227.     }
  228.     }
  229. }
  230.  
  231. /* Compare in detail contiguous subsequences of the two files
  232.    which are known, as a whole, to match each other.
  233.  
  234.    The results are recorded in the vectors files[N].changed_flag, by
  235.    storing a 1 in the element for each line that is an insertion or deletion.
  236.  
  237.    The subsequence of file 0 is [XOFF, XLIM) and likewise for file 1.
  238.  
  239.    Note that XLIM, YLIM are exclusive bounds.
  240.    All line numbers are origin-0 and discarded lines are not counted.  */
  241.  
  242. static void
  243. compareseq (xoff, xlim, yoff, ylim)
  244.      int xoff, xlim, yoff, ylim;
  245. {
  246.   /* Slide down the bottom initial diagonal. */
  247.   while (xoff < xlim && yoff < ylim && xvec[xoff] == yvec[yoff])
  248.     ++xoff, ++yoff;
  249.   /* Slide up the top initial diagonal. */
  250.   while (xlim > xoff && ylim > yoff && xvec[xlim - 1] == yvec[ylim - 1])
  251.     --xlim, --ylim;
  252.  
  253.   /* Handle simple cases. */
  254.   if (xoff == xlim)
  255.     while (yoff < ylim)
  256.       files[1].changed_flag[files[1].realindexes[yoff++]] = 1;
  257.   else if (yoff == ylim)
  258.     while (xoff < xlim)
  259.       files[0].changed_flag[files[0].realindexes[xoff++]] = 1;
  260.   else
  261.     {
  262.       int c, d, /*f,*/ b;
  263.  
  264.       /* Find a point of correspondence in the middle of the files.  */
  265.  
  266.       d = diag (xoff, xlim, yoff, ylim, &c);
  267.       /*f = fdiag[d];*/
  268.       b = bdiag[d];
  269.  
  270.       if (c == 1)
  271.     {
  272.       /* This should be impossible, because it implies that
  273.          one of the two subsequences is empty,
  274.          and that case was handled above without calling `diag'.
  275.          Let's verify that this is true.  */
  276.       abort ();
  277. #if 0
  278.       /* The two subsequences differ by a single insert or delete;
  279.          record it and we are done.  */
  280.       if (d < xoff - yoff)
  281.         files[1].changed_flag[files[1].realindexes[b - d - 1]] = 1;
  282.       else
  283.         files[0].changed_flag[files[0].realindexes[b]] = 1;
  284. #endif
  285.     }
  286.       else
  287.     {
  288.       /* Use that point to split this problem into two subproblems.  */
  289.       compareseq (xoff, b, yoff, b - d);
  290.       /* This used to use f instead of b,
  291.          but that is incorrect!
  292.          It is not necessarily the case that diagonal d
  293.          has a snake from b to f.  */
  294.       compareseq (b, xlim, b - d, ylim);
  295.     }
  296.     }
  297. }
  298.  
  299. /* Discard lines from one file that have no matches in the other file.
  300.  
  301.    A line which is discarded will not be considered by the actual
  302.    comparison algorithm; it will be as if that line were not in the file.
  303.    The file's `realindexes' table maps virtual line numbers
  304.    (which don't count the discarded lines) into real line numbers;
  305.    this is how the actual comparison algorithm produces results
  306.    that are comprehensible when the discarded lines are counted.
  307.  
  308.    When we discard a line, we also mark it as a deletion or insertion
  309.    so that it will be printed in the output.  */
  310.  
  311. static void
  312. discard_confusing_lines (filevec)
  313.      struct file_data filevec[];
  314. {
  315.   unsigned int f, i;
  316.   char *discarded[2];
  317.   int *equiv_count[2];
  318.   int *p;
  319.  
  320.   /* Allocate our results.  */
  321.   p = (int *) xmalloc ((filevec[0].buffered_lines + filevec[1].buffered_lines)
  322.                * (2 * sizeof (int)));
  323.   for (f = 0; f < 2; f++)
  324.     {
  325.       filevec[f].undiscarded = p;  p += filevec[f].buffered_lines;
  326.       filevec[f].realindexes = p;  p += filevec[f].buffered_lines;
  327.     }
  328.  
  329.   /* Set up equiv_count[F][I] as the number of lines in file F
  330.      that fall in equivalence class I.  */
  331.  
  332.   p = (int *) xmalloc (filevec[0].equiv_max * (2 * sizeof (int)));
  333.   equiv_count[0] = p;
  334.   equiv_count[1] = p + filevec[0].equiv_max;
  335.   bzero (p, filevec[0].equiv_max * (2 * sizeof (int)));
  336.  
  337.   for (i = 0; i < filevec[0].buffered_lines; ++i)
  338.     ++equiv_count[0][filevec[0].equivs[i]];
  339.   for (i = 0; i < filevec[1].buffered_lines; ++i)
  340.     ++equiv_count[1][filevec[1].equivs[i]];
  341.  
  342.   /* Set up tables of which lines are going to be discarded.  */
  343.  
  344.   discarded[0] = xmalloc (sizeof (char)
  345.               * (filevec[0].buffered_lines
  346.                  + filevec[1].buffered_lines));
  347.   discarded[1] = discarded[0] + filevec[0].buffered_lines;
  348.   bzero (discarded[0], sizeof (char) * (filevec[0].buffered_lines
  349.                     + filevec[1].buffered_lines));
  350.  
  351.   /* Mark to be discarded each line that matches no line of the other file.
  352.      If a line matches many lines, mark it as provisionally discardable.  */
  353.  
  354.   for (f = 0; f < 2; f++)
  355.     {
  356.       unsigned int end = filevec[f].buffered_lines;
  357.       char *discards = discarded[f];
  358.       int *counts = equiv_count[1 - f];
  359.       int *equivs = filevec[f].equivs;
  360.       unsigned int many = 5;
  361.       unsigned int tem = end / 64;
  362.  
  363.       /* Multiply MANY by approximate square root of number of lines.
  364.      That is the threshold for provisionally discardable lines.  */
  365.       while ((tem = tem >> 2) > 0)
  366.     many *= 2;
  367.  
  368.       for (i = 0; i < end; i++)
  369.     {
  370.       int nmatch;
  371.       if (equivs[i] == 0)
  372.         continue;
  373.       nmatch = counts[equivs[i]];
  374.       if (nmatch == 0)
  375.         discards[i] = 1;
  376.       else if (nmatch > many)
  377.         discards[i] = 2;
  378.     }
  379.     }
  380.  
  381.   /* Don't really discard the provisional lines except when they occur
  382.      in a run of discardables, with nonprovisionals at the beginning
  383.      and end.  */
  384.  
  385.   for (f = 0; f < 2; f++)
  386.     {
  387.       unsigned int end = filevec[f].buffered_lines;
  388.       register char *discards = discarded[f];
  389.  
  390.       for (i = 0; i < end; i++)
  391.     {
  392.       /* Cancel provisional discards not in middle of run of discards.  */
  393.       if (discards[i] == 2)
  394.         discards[i] = 0;
  395.       else if (discards[i] != 0)
  396.         {
  397.           /* We have found a nonprovisional discard.  */
  398.           register int j;
  399.           unsigned int length;
  400.           unsigned int provisional = 0;
  401.  
  402.           /* Find end of this run of discardable lines.
  403.          Count how many are provisionally discardable.  */
  404.           for (j = i; j < end; j++)
  405.         {
  406.           if (discards[j] == 0)
  407.             break;
  408.           if (discards[j] == 2)
  409.             ++provisional;
  410.         }
  411.  
  412.           /* Cancel provisional discards at end, and shrink the run.  */
  413.           while (j > i && discards[j - 1] == 2)
  414.         discards[--j] = 0, --provisional;
  415.  
  416.           /* Now we have the length of a run of discardable lines
  417.          whose first and last are not provisional.  */
  418.           length = j - i;
  419.  
  420.           /* If 1/4 of the lines in the run are provisional,
  421.          cancel discarding of all provisional lines in the run.  */
  422.           if (provisional * 4 > length)
  423.         {
  424.           while (j > i)
  425.             if (discards[--j] == 2)
  426.               discards[j] = 0;
  427.         }
  428.           else
  429.         {
  430.           register unsigned int consec;
  431.           unsigned int minimum = 1;
  432.           unsigned int tem = length / 4;
  433.  
  434.           /* MINIMUM is approximate square root of LENGTH/4.
  435.              A subrun of two or more provisionals can stand
  436.              when LENGTH is at least 16.
  437.              A subrun of 4 or more can stand when LENGTH >= 64.  */
  438.           while ((tem = tem >> 2) > 0)
  439.             minimum *= 2;
  440.           minimum++;
  441.  
  442.           /* Cancel any subrun of MINIMUM or more provisionals
  443.              within the larger run.  */
  444.           for (j = 0, consec = 0; j < length; j++)
  445.             if (discards[i + j] != 2)
  446.               consec = 0;
  447.             else if (minimum == ++consec)
  448.               /* Back up to start of subrun, to cancel it all.  */
  449.               j -= consec;
  450.             else if (minimum < consec)
  451.               discards[i + j] = 0;
  452.  
  453.           /* Scan from beginning of run
  454.              until we find 3 or more nonprovisionals in a row
  455.              or until the first nonprovisional at least 8 lines in.
  456.              Until that point, cancel any provisionals.  */
  457.           for (j = 0, consec = 0; j < length; j++)
  458.             {
  459.               if (j >= 8 && discards[i + j] == 1)
  460.             break;
  461.               if (discards[i + j] == 2)
  462.             consec = 0, discards[i + j] = 0;
  463.               else if (discards[i + j] == 0)
  464.             consec = 0;
  465.               else
  466.             consec++;
  467.               if (consec == 3)
  468.             break;
  469.             }
  470.  
  471.           /* I advances to the last line of the run.  */
  472.           i += length - 1;
  473.  
  474.           /* Same thing, from end.  */
  475.           for (j = 0, consec = 0; j < length; j++)
  476.             {
  477.               if (j >= 8 && discards[i - j] == 1)
  478.             break;
  479.               if (discards[i - j] == 2)
  480.             consec = 0, discards[i - j] = 0;
  481.               else if (discards[i - j] == 0)
  482.             consec = 0;
  483.               else
  484.             consec++;
  485.               if (consec == 3)
  486.             break;
  487.             }
  488.         }
  489.         }
  490.     }
  491.     }
  492.  
  493.   /* Actually discard the lines. */
  494.   for (f = 0; f < 2; f++)
  495.     {
  496.       char *discards = discarded[f];
  497.       unsigned int end = filevec[f].buffered_lines;
  498.       unsigned int j = 0;
  499.       for (i = 0; i < end; ++i)
  500.     if (no_discards || discards[i] == 0)
  501.       {
  502.         filevec[f].undiscarded[j] = filevec[f].equivs[i];
  503.         filevec[f].realindexes[j++] = i;
  504.       }
  505.     else
  506.       filevec[f].changed_flag[i] = 1;
  507.       filevec[f].nondiscarded_lines = j;
  508.     }
  509.  
  510.   free (discarded[0]);
  511.   free (equiv_count[0]);
  512. }
  513.  
  514. /* Adjust inserts/deletes of blank lines to join changes
  515.    as much as possible.
  516.  
  517.    We do something when a run of changed lines include a blank
  518.    line at one end and have an excluded blank line at the other.
  519.    We are free to choose which blank line is included.
  520.    `compareseq' always chooses the one at the beginning,
  521.    but usually it is cleaner to consider the following blank line
  522.    to be the "change".  The only exception is if the preceding blank line
  523.    would join this change to other changes.  */
  524.  
  525. int inhibit;
  526.  
  527. static void
  528. shift_boundaries (filevec)
  529.      struct file_data filevec[];
  530. {
  531.   int f;
  532.  
  533.   if (inhibit)
  534.     return;
  535.  
  536.   for (f = 0; f < 2; f++)
  537.     {
  538.       char *changed = filevec[f].changed_flag;
  539.       char *other_changed = filevec[1-f].changed_flag;
  540.       int i = 0;
  541.       int j = 0;
  542.       int i_end = filevec[f].buffered_lines;
  543.       int preceding = -1;
  544.       int other_preceding = -1;
  545.  
  546.       while (1)
  547.     {
  548.       int start, other_start;
  549.  
  550.       /* Scan forwards to find beginning of another run of changes.
  551.          Also keep track of the corresponding point in the other file.  */
  552.  
  553.       while (i < i_end && changed[i] == 0)
  554.         {
  555.           while (other_changed[j++])
  556.         /* Non-corresponding lines in the other file
  557.            will count as the preceding batch of changes.  */
  558.         other_preceding = j;
  559.           i++;
  560.         }
  561.  
  562.       if (i == i_end)
  563.         break;
  564.  
  565.       start = i;
  566.       other_start = j;
  567.  
  568.       while (1)
  569.         {
  570.           /* Now find the end of this run of changes.  */
  571.  
  572.           while (changed[++i] != 0)
  573.         ;
  574.  
  575.           /* If the first changed line matches the following unchanged one,
  576.          and this run does not follow right after a previous run,
  577.          and there are no lines deleted from the other file here,
  578.          then classify the first changed line as unchanged
  579.          and the following line as changed in its place.  */
  580.  
  581.           /* You might ask, how could this run follow right after another?
  582.          Only because the previous run was shifted here.  */
  583.  
  584.           if (i != i_end
  585.           && files[f].equivs[start] == files[f].equivs[i]
  586.           && !other_changed[j]
  587.           && !(start == preceding || other_start == other_preceding))
  588.         {
  589.           changed[start++] = 0;
  590.           changed[i] = 1;
  591.           /* Since one line-that-matches is now before this run
  592.              instead of after, we must advance in the other file
  593.              to keep in synch.  */
  594.           ++j;
  595.         }
  596.           else
  597.         break;
  598.         }
  599.  
  600.       preceding = i;
  601.       other_preceding = j;
  602.     }
  603.     }
  604. }
  605.  
  606. /* Cons an additional entry onto the front of an edit script OLD.
  607.    LINE0 and LINE1 are the first affected lines in the two files (origin 0).
  608.    DELETED is the number of lines deleted here from file 0.
  609.    INSERTED is the number of lines inserted here in file 1.
  610.  
  611.    If DELETED is 0 then LINE0 is the number of the line before
  612.    which the insertion was done; vice versa for INSERTED and LINE1.  */
  613.  
  614. static struct change *
  615. add_change (line0, line1, deleted, inserted, old)
  616.      int line0, line1, deleted, inserted;
  617.      struct change *old;
  618. {
  619.   struct change *new = (struct change *) xmalloc (sizeof (struct change));
  620.  
  621.   new->line0 = line0;
  622.   new->line1 = line1;
  623.   new->inserted = inserted;
  624.   new->deleted = deleted;
  625.   new->link = old;
  626.   return new;
  627. }
  628.  
  629. /* Scan the tables of which lines are inserted and deleted,
  630.    producing an edit script in reverse order.  */
  631.  
  632. static struct change *
  633. build_reverse_script (filevec)
  634.      struct file_data const filevec[];
  635. {
  636.   struct change *script = 0;
  637.   char *changed0 = filevec[0].changed_flag;
  638.   char *changed1 = filevec[1].changed_flag;
  639.   int len0 = filevec[0].buffered_lines;
  640.   int len1 = filevec[1].buffered_lines;
  641.  
  642.   /* Note that changedN[len0] does exist, and contains 0.  */
  643.  
  644.   int i0 = 0, i1 = 0;
  645.  
  646.   while (i0 < len0 || i1 < len1)
  647.     {
  648.       if (changed0[i0] || changed1[i1])
  649.     {
  650.       int line0 = i0, line1 = i1;
  651.  
  652.       /* Find # lines changed here in each file.  */
  653.       while (changed0[i0]) ++i0;
  654.       while (changed1[i1]) ++i1;
  655.  
  656.       /* Record this change.  */
  657.       script = add_change (line0, line1, i0 - line0, i1 - line1, script);
  658.     }
  659.  
  660.       /* We have reached lines in the two files that match each other.  */
  661.       i0++, i1++;
  662.     }
  663.  
  664.   return script;
  665. }
  666.  
  667. /* Scan the tables of which lines are inserted and deleted,
  668.    producing an edit script in forward order.  */
  669.  
  670. static struct change *
  671. build_script (filevec)
  672.      struct file_data const filevec[];
  673. {
  674.   struct change *script = 0;
  675.   char *changed0 = filevec[0].changed_flag;
  676.   char *changed1 = filevec[1].changed_flag;
  677.   int i0 = filevec[0].buffered_lines, i1 = filevec[1].buffered_lines;
  678.  
  679.   /* Note that changedN[-1] does exist, and contains 0.  */
  680.  
  681.   while (i0 >= 0 || i1 >= 0)
  682.     {
  683.       if (changed0[i0 - 1] || changed1[i1 - 1])
  684.     {
  685.       int line0 = i0, line1 = i1;
  686.  
  687.       /* Find # lines changed here in each file.  */
  688.       while (changed0[i0 - 1]) --i0;
  689.       while (changed1[i1 - 1]) --i1;
  690.  
  691.       /* Record this change.  */
  692.       script = add_change (i0, i1, line0 - i0, line1 - i1, script);
  693.     }
  694.  
  695.       /* We have reached lines in the two files that match each other.  */
  696.       i0--, i1--;
  697.     }
  698.  
  699.   return script;
  700. }
  701.  
  702. /* If CHANGES, briefly report that two files differed.  */
  703. static void
  704. briefly_report (changes, filevec)
  705.      int changes;
  706.      struct file_data const filevec[];
  707. {
  708.   if (changes)
  709.     message (no_details_flag ? "Files %s and %s differ\n"
  710.          : "Binary files %s and %s differ\n",
  711.          filevec[0].name, filevec[1].name);
  712. }
  713.  
  714. /* Report the differences of two files.  DEPTH is the current directory
  715.    depth. */
  716. int
  717. diff_2_files (filevec, depth)
  718.      struct file_data filevec[];
  719.      int depth;
  720. {
  721.   int diags;
  722.   int i;
  723.   struct change *e, *p;
  724.   struct change *script;
  725.   int changes;
  726.  
  727.  
  728.   /* If we have detected that either file is binary,
  729.      compare the two files as binary.  This can happen
  730.      only when the first chunk is read.
  731.      Also, --brief without any --ignore-* options means
  732.      we can speed things up by treating the files as binary.  */
  733.  
  734.   if (read_files (filevec, no_details_flag & ~ignore_some_changes))
  735.     {
  736.       /* Files with different lengths must be different.  */
  737.       if (filevec[0].stat.st_size != filevec[1].stat.st_size
  738.       && (filevec[0].desc < 0 || S_ISREG (filevec[0].stat.st_mode))
  739.       && (filevec[1].desc < 0 || S_ISREG (filevec[1].stat.st_mode)))
  740.     changes = 1;
  741.  
  742.       /* Standard input equals itself.  */
  743.       else if (filevec[0].desc == filevec[1].desc)
  744.     changes = 0;
  745.  
  746.       else
  747.     /* Scan both files, a buffer at a time, looking for a difference.  */
  748.     {
  749.       /* Allocate same-sized buffers for both files.  */
  750.       size_t buffer_size = buffer_lcm (STAT_BLOCKSIZE (filevec[0].stat),
  751.                        STAT_BLOCKSIZE (filevec[1].stat));
  752.       for (i = 0; i < 2; i++)
  753.         filevec[i].buffer = xrealloc (filevec[i].buffer, buffer_size);
  754.  
  755.       for (;;  filevec[0].buffered_chars = filevec[1].buffered_chars = 0)
  756.         {
  757.           /* Read a buffer's worth from both files.  */
  758.           for (i = 0; i < 2; i++)
  759.         if (0 <= filevec[i].desc)
  760.           while (filevec[i].buffered_chars != buffer_size)
  761.             {
  762.               int r = read (filevec[i].desc,
  763.                     filevec[i].buffer
  764.                     + filevec[i].buffered_chars,
  765.                     buffer_size - filevec[i].buffered_chars);
  766.               if (r == 0)
  767.             break;
  768.               if (r < 0)
  769.             pfatal_with_name (filevec[i].name);
  770.               filevec[i].buffered_chars += r;
  771.             }
  772.  
  773.           /* If the buffers differ, the files differ.  */
  774.           if (filevec[0].buffered_chars != filevec[1].buffered_chars
  775.           || (filevec[0].buffered_chars != 0
  776.               && memcmp (filevec[0].buffer,
  777.                  filevec[1].buffer,
  778.                  filevec[0].buffered_chars) != 0))
  779.         {
  780.           changes = 1;
  781.           break;
  782.         }
  783.  
  784.           /* If we reach end of file, the files are the same.  */
  785.           if (filevec[0].buffered_chars != buffer_size)
  786.         {
  787.           changes = 0;
  788.           break;
  789.         }
  790.         }
  791.     }
  792.  
  793.       briefly_report (changes, filevec);
  794.     }
  795.   else
  796.     {
  797.       /* Allocate vectors for the results of comparison:
  798.      a flag for each line of each file, saying whether that line
  799.      is an insertion or deletion.
  800.      Allocate an extra element, always zero, at each end of each vector.  */
  801.  
  802.       size_t s = filevec[0].buffered_lines + filevec[1].buffered_lines + 4;
  803.       filevec[0].changed_flag = xmalloc (s);
  804.       bzero (filevec[0].changed_flag, s);
  805.       filevec[0].changed_flag++;
  806.       filevec[1].changed_flag = filevec[0].changed_flag
  807.                 + filevec[0].buffered_lines + 2;
  808.  
  809.       /* Some lines are obviously insertions or deletions
  810.      because they don't match anything.  Detect them now, and
  811.      avoid even thinking about them in the main comparison algorithm.  */
  812.  
  813.       discard_confusing_lines (filevec);
  814.  
  815.       /* Now do the main comparison algorithm, considering just the
  816.      undiscarded lines.  */
  817.  
  818.       xvec = filevec[0].undiscarded;
  819.       yvec = filevec[1].undiscarded;
  820.       diags = filevec[0].nondiscarded_lines + filevec[1].nondiscarded_lines + 3;
  821.       fdiag = (int *) xmalloc (diags * (2 * sizeof (int)));
  822.       bdiag = fdiag + diags;
  823.       fdiag += filevec[1].nondiscarded_lines + 1;
  824.       bdiag += filevec[1].nondiscarded_lines + 1;
  825.  
  826.       files[0] = filevec[0];
  827.       files[1] = filevec[1];
  828.  
  829.       compareseq (0, filevec[0].nondiscarded_lines,
  830.           0, filevec[1].nondiscarded_lines);
  831.  
  832.       free (fdiag - (filevec[1].nondiscarded_lines + 1));
  833.  
  834.       /* Modify the results slightly to make them prettier
  835.      in cases where that can validly be done.  */
  836.  
  837.       shift_boundaries (filevec);
  838.  
  839.       /* Get the results of comparison in the form of a chain
  840.      of `struct change's -- an edit script.  */
  841.  
  842.       if (output_style == OUTPUT_ED)
  843.     script = build_reverse_script (filevec);
  844.       else
  845.     script = build_script (filevec);
  846.  
  847.       /* Set CHANGES if we had any diffs.
  848.      If some changes are ignored, we must scan the script to decide.  */
  849.       if (ignore_blank_lines_flag || ignore_regexp_list)
  850.     {
  851.       struct change *next = script;
  852.       changes = 0;
  853.  
  854.       while (next && changes == 0)
  855.         {
  856.           struct change *this, *end;
  857.           int first0, last0, first1, last1, deletes, inserts;
  858.  
  859.           /* Find a set of changes that belong together.  */
  860.           this = next;
  861.           end = find_change (next);
  862.  
  863.           /* Disconnect them from the rest of the changes, making them
  864.          a hunk, and remember the rest for next iteration.  */
  865.           next = end->link;
  866.           end->link = 0;
  867.  
  868.           /* Determine whether this hunk is really a difference.  */
  869.           analyze_hunk (this, &first0, &last0, &first1, &last1,
  870.                 &deletes, &inserts);
  871.  
  872.           /* Reconnect the script so it will all be freed properly.  */
  873.           end->link = next;
  874.  
  875.           if (deletes || inserts)
  876.         changes = 1;
  877.         }
  878.     }
  879.       else
  880.     changes = (script != 0);
  881.  
  882.       if (no_details_flag)
  883.     briefly_report (changes, filevec);
  884.       else
  885.     {
  886.       if (changes || ! no_diff_means_no_output)
  887.         {
  888.           /* Record info for starting up output,
  889.          to be used if and when we have some output to print.  */
  890.           setup_output (files[0].name, files[1].name, depth);
  891.  
  892.           switch (output_style)
  893.         {
  894.         case OUTPUT_CONTEXT:
  895.           print_context_script (script, 0);
  896.           break;
  897.  
  898.         case OUTPUT_UNIFIED:
  899.           print_context_script (script, 1);
  900.           break;
  901.  
  902.         case OUTPUT_ED:
  903.           print_ed_script (script);
  904.           break;
  905.  
  906.         case OUTPUT_FORWARD_ED:
  907.           pr_forward_ed_script (script);
  908.           break;
  909.  
  910.         case OUTPUT_RCS:
  911.           print_rcs_script (script);
  912.           break;
  913.  
  914.         case OUTPUT_NORMAL:
  915.           print_normal_script (script);
  916.           break;
  917.  
  918.         case OUTPUT_IFDEF:
  919.           print_ifdef_script (script);
  920.           break;
  921.  
  922.         case OUTPUT_SDIFF:
  923.           print_sdiff_script (script);
  924.         }
  925.  
  926.           finish_output ();
  927.         }
  928.     }
  929.  
  930.       free (filevec[0].undiscarded);
  931.  
  932.       free (filevec[0].changed_flag - 1);
  933.  
  934.       for (i = 1; i >= 0; --i)
  935.     free (filevec[i].equivs);
  936.  
  937.       for (i = 0; i < 2; ++i)
  938.     free (filevec[i].linbuf + filevec[i].linbuf_base);
  939.  
  940.       for (e = script; e; e = p)
  941.     {
  942.       p = e->link;
  943.       free (e);
  944.     }
  945.  
  946.       if (! ROBUST_OUTPUT_STYLE (output_style))
  947.     for (i = 0; i < 2; ++i)
  948.       if (filevec[i].missing_newline)
  949.         {
  950.           error ("No newline at end of file %s", filevec[i].name, "");
  951.           changes = 2;
  952.         }
  953.     }
  954.  
  955.   if (filevec[0].buffer != filevec[1].buffer)
  956.     free (filevec[0].buffer);
  957.   free (filevec[1].buffer);
  958.  
  959.   return changes;
  960. }
  961.